@charset "utf-8";

:root {
    --theme: #224ae3;

    --color-major: #262626;
    --color-common: #595959;
    --color-minor: #8c8c8c;
    --color-holder: #bfbfbf;

    --hover-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.16);
}
/* *:where(:not(iframe, canvas, img, svg, video, colgroup, col, font, td, input[type="checkbox"], input[type="radio"]):not(svg *)) {
    all: unset;
    display: revert;
} */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

*:focus-visible {
    outline: none !important;
}

/* 为所有具有滚动条的元素自定义滚动条样式 */
::-webkit-scrollbar {
    width: 0; /* 设置滚动条的宽度 */
  }
  

html, body, pre {
    /* font-family: "Microsoft YaHei", Arial, Tahoma, Verdana, Helvetica, sans-serif; */
    font-family: "Helvetica Neue",Helvetica,"Hiragino Sans GB","PingFang SC","Microsoft YaHei","微软雅黑",Arial,sans-serif;
}
body {
    /* overflow: hidden; */
    font-size: 14px;
    line-height: 22px;
    color: #303133;
    background-color: #f5f5f5;
}
a {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}
table {
    border-collapse: collapse;
}
li {
    list-style: none;
}

button:hover {
    cursor: pointer;
}

input, textarea {
    border: 1px solid #ddd;
    background: rgba(255, 255, 255, .5);
    border-radius: 4px;
}
input {
    padding: 3px 5px;
    line-height: 1.5;
}
input[type="checkbox"], input[type="radio"] {
    margin: 0;
}
/*删除密码框中的小眼睛*/
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #b0b0b0;
}
textarea {
    width: 100%;
    height: 100px;
    padding: 5px 15px 15px;
}

svg {
    padding-top: 1px;
}

/*匹配添加 .iconfont 样式，减少类名输入*/
/* [class] 获取到的是整个class字符串(多个类名) */
i[class^=ZL-], /* 以 ZL-开头 */
i[class*=" ZL-"] { /* 包含 ZL- ，空格细节 */
    font-family: "iconfont","Helvetica Neue",Helvetica,"Hiragino Sans GB","PingFang SC","Microsoft YaHei","微软雅黑",Arial,sans-serif !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.hove-o:hover {
    opacity: 0.7;
}

/*----原子类----*/
.relative {
    position: relative;
}

.blur {
    -webkit-filter: blur(8px);
    -moz-filter: blur(8px);
    -ms-filter: blur(8px);
    filter: blur(8px);
}

.full {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

.translate-0 {
    transform: translate(0, 0)
}

.hidden {
    overflow: hidden;
}

.border-no {
    border: none !important;
}

.BST_font-12 {
    font-size: 12px;
    line-height: 20px;
}
.BST_font-14 {
    font-size: 14px;
    line-height: 22px;
}
.BST_font-16 {
    font-size: 16px;
    line-height: 24px;
}
.BST_font-20 {
    font-size: 20px;
    line-height: 28px;
}
.BST_font-24 {
    font-size: 24px;
    line-height: 32px;
}
.BST_font-30 {
    font-size: 30px;
    line-height: 38px;
}

[class*="clamp-"] {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}
.clamp-2 {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.clamp-3 {
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

/*----原子类--end--*/


/*----------------------网站布局结构---------------------*/
.homePage {
    min-width: 1200px;
    min-height: calc(100vh - 685px); /* 一屏的高度 减去 顶栏和底栏 */
}
.full-row {
    width: 1200px;
    margin: 0 auto;
}
.full-row-header{
    width: 1200px;
    margin: 0 auto;
}

.scrollbar-set {
    height: 100%;
}
/*--------------------网站布局结构 end------------------*/

/*公用类*/
.border_no input {
    border: none;
    background-color: initial;
}

.clear:after {
    display: block;
    content: '';
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

.red {
    color: red;
}

.box_shadow_1 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: -2px 0px 10px 5px rgba(0, 0, 0, 0.01), 0px -2px 10px 5px rgba(0, 0, 0, 0.01), 2px 0px 10px 5px rgba(0, 0, 0, 0.01), 0px 2px 10px 5px rgba(0, 0, 0, 0.01);
}

.theme_color {
    color: #2249e2;
}

.position-relative {
    position: relative;
}

.pointer {
    cursor: pointer;
}

.size-12 {
    font-size: 12px;
}

.text-center {
    text-align: center;
}

.text-theme {
    color: var(--theme-color);
}

.text-orange {
    color: orange;
}

.text-danger {
    color: #ff3920;
}

.text-sec {
    color: #8c8c8c;
}

.text-bold {
    font-weight: bold;
}

.text-two-line {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.d-flex {
    display: flex;
    align-items: flex-start;
}

.center-flex {
    display: flex;
    align-items: center;
}

.flex-1 {
    flex: 1;
}

.space-between {
    justify-content: space-between;
}

.space-around {
    justify-content: space-around;
}

.space-center {
    justify-content: center;
}


.company-main .el-input__inner,
.keywordQuery .el-input__inner {
    border-color: var(--color-holder);
}
.company-main .el-input__inner,
.keywordQuery .el-input__inner,
.company-main .el-input__icon,
.company-main .el-input__prefix,
.company-main .el-input__suffix,
.keywordQuery .el-input__icon,
.keywordQuery .el-input__prefix,
.keywordQuery .el-input__suffix {
    height: 32px;
    line-height: 32px;
    vertical-align: top;
}
.company-main .el-button,
.keywordQuery .el-button {
    padding-top: 0;
    padding-bottom: 0;
    line-height: 32px;
}


.el-input.is-active .el-input__inner, .el-input__inner:focus {
    border-color: #2249e2;
}
.el-textarea__inner:focus {
    border-color: #2249e2;
}
.el-radio__input.is-checked .el-radio__inner,
.el-checkbox__input.is-checked .el-checkbox__inner,
.el-checkbox__input.is-indeterminate .el-checkbox__inner {
    background-color: #2249e2;
    border-color: #2249e2;
}

.el-radio.is-checked .el-radio__label,
.el-checkbox.is-checked .el-checkbox__label {
    color: #2249e2;
}

.noBoxShadow {
    box-shadow: none !important;
}

.hide {
    display: none !important;
}

.cascaderArea {
    z-index: 8 !important;
}

/*弹窗三角形*/
.el-popper[x-placement^=top] .popper__arrow {
    border-top-color: rgba(187, 196, 218, 0.41);
    bottom: -5px;
}

.el-popper[x-placement^=bottom] .popper__arrow::after {
    top: 3px;
}

.el-popper[x-placement^=bottom] .popper__arrow {
    border-top-color: rgba(187, 196, 218, 0.41);
}

.el-checkbox__inner {
    width: 15px;
    height: 15px;
    border: 1px solid #9595ab;
}

.el-checkbox__input.is-focus .el-checkbox__inner {
    border: 1px solid #2249e2;
}

.el-select {
    width: 100%;
}

.el-select-dropdown__list {
    list-style: none;
    padding: 6px 0;
    margin: 0;
    box-sizing: border-box;
}

.el-checkbox {
    color: black;
}

/*6 等份*/
.groupCheckbox .el-checkbox.row_4 {
    width: 16.667%;
    box-sizing: border-box;
    padding-right: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    height: 40px;
}

.groupCheckbox .el-checkbox.row_4 + .el-checkbox {
    margin: 0px;
}

/*4 等份*/
.groupCheckbox .el-checkbox.row_6 {
    width: 25%;
    box-sizing: border-box;
    padding-right: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    height: 40px;
}

.groupCheckbox .el-checkbox.row_6 + .el-checkbox {
    margin: 0px;
}

/*.el-popper  .el-select-dropdown__list{padding: 17px 0;}*/

/*form*/
.el-form-item {
    margin-bottom: 25px;
}

.el-form-item:last-child {
    margin-bottom: 0;
}

.el-form--inline .el-form-item:last-child {
    margin-bottom: 20px;
}

input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 1);
}

.el-form-item__label {
    color: black;
}

.el-textarea {
    padding: 0 0 1px 0;
}

/*下拉样式重置*/
.el-dropdown {
    outline: none;
}

.el-dropdown-menu__item--divided {
    margin-top: 0;
}

.el-dropdown-menu {
    padding: 5px 0;
    border: none;
}

.el-dropdown-menu__item {
    line-height: 32px;
    box-sizing: border-box;
}

.el-dropdown-menu__item--divided:before {
    height: 0;
}

/*下拉样式 添加图标 */
.el-dropdown-menu__item i {
    font-size: 16px;
    padding-right: 5px;
    color: #333333;
}

/* el-scrollbar 标签 滚动条样式  修改*/
.el-scrollbar {
    height: 100%;
}

.smsc_list_box .el-scrollbar__wrap {
    overflow: scroll;
    overflow-x: auto
}

.el-scrollbar__view {
    height: 100%;
}


.el-button--primary,
.el-button--primary:focus,
.el-button--primary:hover {
    background-color: #224ae3;
    border-color: #224ae3;
}
.el-button--primary:focus,
.el-button--primary:hover {
    opacity: .8;
}


.boards-list {
    position: relative;
    width: 1200px;
    margin: 20px auto 0;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
}
.boards-list-head {
    display: flex;
    padding-top: 4px;
    font-size: 16px;
    text-align: center;
    line-height: 32px;
    color: #262626;
    background: #F8F9FA;
}
.boards-list-head .head-bar {
    flex: 1;
}
.boards-list-head .grid {
    width: 140px;
}
.loadingList {
    position: relative;
}
.loadingList::before {
    content: '加载中...';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
    background: rgba(0, 0, 0, .3);
}
.loadingList > * {
    filter: blur(3px);
}

.keywordQuery {
    padding: 30px 0;
}




/* 2021-2-2 */
.company-page {
    padding-bottom: 30px;
}
.company-page .search-box .el-input__inner,
.company-page .search-box .el-input__icon {
    height: 32px;
    line-height: 32px;
}
.company-page .search-box .el-input__suffix {
    right: 0;
}
.company-container .el-select,
.company-container .el-select__tags,
.company-page .search-box .el-button--primary {
    height: 32px;
    padding-top: 0;
    padding-bottom: 0;
}
.company-container .el-select__tags > span {
    display: inline-block;
    height: 28px;
    overflow: hidden;

    word-break: normal;
    white-space: pre-wrap;
    word-wrap: break-word;
    text-overflow: ellipsis;
}
.company-container {
    width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
}
.company-container .home-main-title {
    margin-left: 0 !important;
}
.module-title{
    font-size: 30px;
    font-weight: 600;
    line-height: 38px;
    text-align: center;
    color: #262626;
    margin-bottom:44px;
}
.module-title-white{
    color:#FFFFFF;
}
.module-box{
    padding:64px 0;
    width:100%;
}
.bgFFF{
    background:#FFFFFF;
}